home *** CD-ROM | disk | FTP | other *** search
/ Aminet 30 / Aminet 30 (1999)(Schatztruhe)[!][Apr 1999].iso / Aminet / hard / misc / NewMouse11.lha / newmouse.h < prev   
C/C++ Source or Header  |  1999-02-16  |  545b  |  25 lines

  1. /*
  2.  * Include file for the NewMouse standard way of handling wheeled mice.
  3.  * 
  4.  * Copyright (c) 1999 by Alessandro Zummo. All Rights Reserved.
  5. */
  6.  
  7. #ifndef NEWMOUSE_H
  8. #define NEWMOUSE_H
  9.  
  10. #define IECLASS_NEWMOUSE    (0x16)  /* IECLASS_MAX + 1 as of V40 */ 
  11.  
  12. /* These are issued both under IECLASS_NEWMOUSE and IECLASS_RAWKEY     */ 
  13. /* by the NewMouse driver                                            */
  14.  
  15. #define NM_WHEEL_UP            (0x7A)
  16. #define NM_WHEEL_DOWN        (0x7B)
  17. #define NM_WHEEL_LEFT        (0x7C)
  18. #define NM_WHEEL_RIGHT        (0x7D)
  19.  
  20. #define NM_BUTTON_FOURTH    (0x7E)
  21.  
  22.  
  23. #endif /* NEWMOUSE_H */
  24.  
  25.